Skip to content

Commit

Permalink
Fix firmware & giac update
Browse files Browse the repository at this point in the history
  • Loading branch information
zardam committed Jan 29, 2020
1 parent 1f98055 commit be54e5f
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Binary file modified apps/KhiCAS/app.elf
Binary file not shown.
Binary file modified apps/KhiCAS/libgiac.a
Binary file not shown.
Binary file modified firmware/delta.external.bin
Binary file not shown.
Binary file modified firmware/delta.internal.bin
Binary file not shown.
Binary file removed firmware/omega.external.bin
Binary file not shown.
Binary file removed firmware/omega.internal.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<img class="d-block mx-auto mb-4" src="images/external_icon.png" alt="" width="52" height="52">
<h2 translate="TITLE"></h2>
<!-- <p class="lead" translate="LEAD"></p> -->
<p class="lead" ng-hide="uploading">{{ 'FIRMWARE' | translate }}<a href="#" ng-click="uploadFirmware('delta')">Delta</a> {{ 'OR' | translate }} <a href="#" ng-click="uploadFirmware('omega')">Omega</a></p>
<p class="lead" ng-hide="uploading">{{ 'FIRMWARE' | translate }}<a href="#" ng-click="uploadFirmware('delta')">{{ 'HERE' | translate }}</a></p>
<p class="lead" ng-hide="uploading">{{ 'DISCLAIM' | translate }}<a href="https://github.com/zardam/nw-external-apps" target="_blank">{{ 'HERE' | translate }}</a></p>
</div>

Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ angular.module('nwas', ['ngSanitize', 'pascalprecht.translate']).controller('mai
});
let archive = await buildArchive($scope.selectedApps, $scope.customFiles);
console.log("Archive", archive);
await uploadFile(selectedDevice, "@External Flash /0x90200000/32*064Kg,64*064Kg", archive, false);
await uploadFile(selectedDevice, "@External Flash /0x90000000/32*064Kg,64*064Kg", archive, false);
$scope.$apply(function() {
$scope.allDone = true;
});
Expand Down Expand Up @@ -283,7 +283,7 @@ angular.module('nwas', ['ngSanitize', 'pascalprecht.translate']).controller('mai
.translations('en', {
TITLE: 'Unofficial N110 application repository',
LEAD: 'Here you will find some installable applications for a N110 calculator.',
FIRMWARE: 'To install a compatible firmware on your calculator, please choose: ',
FIRMWARE: 'To install a compatible firmware on your calculator, please go ',
DISCLAIM: 'For more information (or filling an issue) please go ',
HERE: 'here',
NO_WEB_USB: 'Your browser does not support WebUSB, please use',
Expand All @@ -307,7 +307,7 @@ angular.module('nwas', ['ngSanitize', 'pascalprecht.translate']).controller('mai
.translations('fr', {
TITLE: 'Dépôt d\'application N110 non officiel',
LEAD: 'Vous trouverez ici quelques application installables sur une calculatrice N110.',
FIRMWARE: 'Pour installer un micrologiciel compatible, veuillez choisir : ',
FIRMWARE: 'Pour installer un micrologiciel compatible, veuillez vous rendre ',
DISCLAIM: 'Pour plus d\'informations (ou soumettre un problème) veuillez vous rendre ',
HERE: 'ici',
NO_WEB_USB: 'Votre navigateur ne supporte pas WebUSB, veuillez utiliser',
Expand Down

0 comments on commit be54e5f

Please sign in to comment.